home *** CD-ROM | disk | FTP | other *** search
/ Point Programming 1 / PPROG1.ISO / pascal / swag / crt.swg / 0016_Toggle Blink On-Off.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-11-26  |  106 b   |  8 lines

  1. procedure ToggleBlink(OnOff:boolean);
  2. assembler;
  3. asm
  4.   mov ax,1003h
  5.   mov bl,OnOff
  6.   int 10h
  7. end;
  8.